ysf的沙龍
Nature of Code閱讀心得與Python實作
70
免費公開
房間資訊
Daniel Shiffman所著「The Nature of Code」一書的閱讀心得,並用python及pygame來實作範例及練習題。 原書網頁版:https://natureofcode.com/
全部
Chapter 0
Chapter 1
Chapter 2
Chapter 3
Chapter 4
Chapter 5
Chapter 6
Chapter 7
Chapter 8
Chapter 9
全部
Chapter 0
Chapter 1
Chapter 2
Chapter 3
Chapter 4
Chapter 5
Chapter 6
Chapter 7
Chapter 8
Chapter 9
全部類型
免費與付費
最新發佈
最新發佈
ysf
2024/06/13
The Nature of Code閱讀心得與Python實作:0.6 A Smoother Approach...
這一節的標題是A Smoother Approach with Perlin Noise,介紹由Ken Perlin所開發的Perlin noise,及其應用方式。
#
python
#
Python
#
PYTHON
6
ysf
2024/06/13
The Nature of Code閱讀心得與Python實作:0.6 A Smoother Approach...
這一節的標題是A Smoother Approach with Perlin Noise,介紹由Ken Perlin所開發的Perlin noise,及其應用方式。
#
python
#
Python
#
PYTHON
6
ysf
2024/06/09
The Nature of Code閱讀心得與Python實作:0.5 A Custom Distribution...
這一節介紹使用accept-reject algorithm來產生符合特定機率分布的亂數,使得random walker具備Lévy flight的能力。
#
python
#
Python
#
PYTHON
3
ysf
2024/06/09
The Nature of Code閱讀心得與Python實作:0.5 A Custom Distribution...
這一節介紹使用accept-reject algorithm來產生符合特定機率分布的亂數,使得random walker具備Lévy flight的能力。
#
python
#
Python
#
PYTHON
3
ysf
2024/06/05
The Nature of Code閱讀心得與Python實作:0.4 A Normal Distribution...
這一節的標題是0.4 A Normal Distribution of Random Numbers,介紹常態分布的基本概念,以及相關亂數產生器的使用方法與應用方式。
#
python
#
Python
#
PYTHON
7
ysf
2024/06/05
The Nature of Code閱讀心得與Python實作:0.4 A Normal Distribution...
這一節的標題是0.4 A Normal Distribution of Random Numbers,介紹常態分布的基本概念,以及相關亂數產生器的使用方法與應用方式。
#
python
#
Python
#
PYTHON
7
ysf
2024/05/31
The Nature of Code閱讀心得與Python實作:0.3 Probability and Non...
在模擬自然界中的事物時導入隨機性,可以讓結果看起來比較自然,但如果導入的隨機性都是uniform distribution,那未免也太呆板了。這時候,我們需要nonuniform distribution亂數,來讓模擬出來的結果,更像真的一樣。
#
python
#
pygame
#
機率
5
ysf
2024/05/31
The Nature of Code閱讀心得與Python實作:0.3 Probability and Non...
在模擬自然界中的事物時導入隨機性,可以讓結果看起來比較自然,但如果導入的隨機性都是uniform distribution,那未免也太呆板了。這時候,我們需要nonuniform distribution亂數,來讓模擬出來的結果,更像真的一樣。
#
python
#
pygame
#
機率
5
ysf
2024/05/27
The Nature of Code閱讀心得與Python實作:0.2 The Random Walker Class
這一節談的是用物件導向程式設計(object-oriented programming, OOP)的方式來實作隨機漫步。
#
python
#
Python
#
PYTHON
3
ysf
2024/05/27
The Nature of Code閱讀心得與Python實作:0.2 The Random Walker Class
這一節談的是用物件導向程式設計(object-oriented programming, OOP)的方式來實作隨機漫步。
#
python
#
Python
#
PYTHON
3
ysf
2024/05/25
The Nature of Code閱讀心得與Python實作:0.1 Random Walks
隨機漫步看似簡單,但卻是模擬許多自然界現象的基礎,相關的觀念及程式實作方式,對於瞭解亂數、機率、Perlin noise等工具,會有相當大的幫助。
#
隨機漫步
#
python
#
RandomWalk
4
ysf
2024/05/25
The Nature of Code閱讀心得與Python實作:0.1 Random Walks
隨機漫步看似簡單,但卻是模擬許多自然界現象的基礎,相關的觀念及程式實作方式,對於瞭解亂數、機率、Perlin noise等工具,會有相當大的幫助。
#
隨機漫步
#
python
#
RandomWalk
4
ysf
2024/05/25
The Nature of Code閱讀心得與Python實作:Chap. 0 Randomness
在這一章中,會透過介紹在螢幕上模擬物體移動時,其背後的原理與實作方法,來介紹亂數(random number)、隨機分布(random distribution)、Perlin noise等,這些可以用來引入隨機性的工具。
#
隨機性
#
randomness
#
python
1
ysf
2024/05/25
The Nature of Code閱讀心得與Python實作:Chap. 0 Randomness
在這一章中,會透過介紹在螢幕上模擬物體移動時,其背後的原理與實作方法,來介紹亂數(random number)、隨機分布(random distribution)、Perlin noise等,這些可以用來引入隨機性的工具。
#
隨機性
#
randomness
#
python
1
加入
全部
Chapter 0
Chapter 1
Chapter 2
Chapter 3
Chapter 4
Chapter 5
Chapter 6
Chapter 7
Chapter 8
Chapter 9
全部
Chapter 0
Chapter 1
Chapter 2
Chapter 3
Chapter 4
Chapter 5
Chapter 6
Chapter 7
Chapter 8
Chapter 9
全部類型
免費與付費
最新發佈
最新發佈
ysf
2024/06/13
The Nature of Code閱讀心得與Python實作:0.6 A Smoother Approach...
這一節的標題是A Smoother Approach with Perlin Noise,介紹由Ken Perlin所開發的Perlin noise,及其應用方式。
#
python
#
Python
#
PYTHON
6
ysf
2024/06/13
The Nature of Code閱讀心得與Python實作:0.6 A Smoother Approach...
這一節的標題是A Smoother Approach with Perlin Noise,介紹由Ken Perlin所開發的Perlin noise,及其應用方式。
#
python
#
Python
#
PYTHON
6
ysf
2024/06/09
The Nature of Code閱讀心得與Python實作:0.5 A Custom Distribution...
這一節介紹使用accept-reject algorithm來產生符合特定機率分布的亂數,使得random walker具備Lévy flight的能力。
#
python
#
Python
#
PYTHON
3
ysf
2024/06/09
The Nature of Code閱讀心得與Python實作:0.5 A Custom Distribution...
這一節介紹使用accept-reject algorithm來產生符合特定機率分布的亂數,使得random walker具備Lévy flight的能力。
#
python
#
Python
#
PYTHON
3
ysf
2024/06/05
The Nature of Code閱讀心得與Python實作:0.4 A Normal Distribution...
這一節的標題是0.4 A Normal Distribution of Random Numbers,介紹常態分布的基本概念,以及相關亂數產生器的使用方法與應用方式。
#
python
#
Python
#
PYTHON
7
ysf
2024/06/05
The Nature of Code閱讀心得與Python實作:0.4 A Normal Distribution...
這一節的標題是0.4 A Normal Distribution of Random Numbers,介紹常態分布的基本概念,以及相關亂數產生器的使用方法與應用方式。
#
python
#
Python
#
PYTHON
7
ysf
2024/05/31
The Nature of Code閱讀心得與Python實作:0.3 Probability and Non...
在模擬自然界中的事物時導入隨機性,可以讓結果看起來比較自然,但如果導入的隨機性都是uniform distribution,那未免也太呆板了。這時候,我們需要nonuniform distribution亂數,來讓模擬出來的結果,更像真的一樣。
#
python
#
pygame
#
機率
5
ysf
2024/05/31
The Nature of Code閱讀心得與Python實作:0.3 Probability and Non...
在模擬自然界中的事物時導入隨機性,可以讓結果看起來比較自然,但如果導入的隨機性都是uniform distribution,那未免也太呆板了。這時候,我們需要nonuniform distribution亂數,來讓模擬出來的結果,更像真的一樣。
#
python
#
pygame
#
機率
5
ysf
2024/05/27
The Nature of Code閱讀心得與Python實作:0.2 The Random Walker Class
這一節談的是用物件導向程式設計(object-oriented programming, OOP)的方式來實作隨機漫步。
#
python
#
Python
#
PYTHON
3
ysf
2024/05/27
The Nature of Code閱讀心得與Python實作:0.2 The Random Walker Class
這一節談的是用物件導向程式設計(object-oriented programming, OOP)的方式來實作隨機漫步。
#
python
#
Python
#
PYTHON
3
ysf
2024/05/25
The Nature of Code閱讀心得與Python實作:0.1 Random Walks
隨機漫步看似簡單,但卻是模擬許多自然界現象的基礎,相關的觀念及程式實作方式,對於瞭解亂數、機率、Perlin noise等工具,會有相當大的幫助。
#
隨機漫步
#
python
#
RandomWalk
4
ysf
2024/05/25
The Nature of Code閱讀心得與Python實作:0.1 Random Walks
隨機漫步看似簡單,但卻是模擬許多自然界現象的基礎,相關的觀念及程式實作方式,對於瞭解亂數、機率、Perlin noise等工具,會有相當大的幫助。
#
隨機漫步
#
python
#
RandomWalk
4
ysf
2024/05/25
The Nature of Code閱讀心得與Python實作:Chap. 0 Randomness
在這一章中,會透過介紹在螢幕上模擬物體移動時,其背後的原理與實作方法,來介紹亂數(random number)、隨機分布(random distribution)、Perlin noise等,這些可以用來引入隨機性的工具。
#
隨機性
#
randomness
#
python
1
ysf
2024/05/25
The Nature of Code閱讀心得與Python實作:Chap. 0 Randomness
在這一章中,會透過介紹在螢幕上模擬物體移動時,其背後的原理與實作方法,來介紹亂數(random number)、隨機分布(random distribution)、Perlin noise等,這些可以用來引入隨機性的工具。
#
隨機性
#
randomness
#
python
1